home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / UTLXPLAN.SQL < prev   
Encoding:
Text File  |  1995-05-09  |  1.2 KB  |  46 lines

  1. rem 
  2. rem $Header: utlxplan.sql 7020100.1 94/09/23 22:14:22 cli Generic<base> $ xplainpl.sql 
  3. rem 
  4. Rem Copyright (c) 1988 by Oracle Corporation
  5. Rem NAME
  6. REM    UTLXPLAN.SQL
  7. Rem  FUNCTION
  8. Rem  NOTES
  9. Rem  MODIFIED
  10. Rem     jcohen     11/05/93 -  merge changes from branch 1.1.710.1 - 9/24
  11. Rem     jcohen     09/24/93 - #163783 add optimizer column
  12. Rem     glumpkin   10/25/92 -  Renamed from XPLAINPL.SQL 
  13. Rem     jcohen     05/22/92 - #79645 - set node width to 128 (M_XDBI in gendef)
  14. Rem     rlim       04/29/91 -         change char to varchar2 
  15. Rem   Peeler     10/19/88 - Creation
  16. Rem
  17. Rem This is the format for the table that is used by the EXPLAIN PLAN
  18. Rem statement.  The explain statement requires the presence of this 
  19. Rem table in order to store the descriptions of the row sources.
  20.  
  21. create table PLAN_TABLE (
  22.     statement_id     varchar2(30),
  23.     timestamp        date,
  24.     remarks          varchar2(80),
  25.     operation        varchar2(30),
  26.     options           varchar2(30),
  27.     object_node      varchar2(128),
  28.     object_owner     varchar2(30),
  29.     object_name      varchar2(30),
  30.     object_instance numeric,
  31.     object_type     varchar2(30),
  32.     optimizer       varchar2(255),
  33.     search_columns  numeric,
  34.     id        numeric,
  35.     parent_id    numeric,
  36.     position    numeric,
  37.     other        long);
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.